home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / USEnet Digests / USEnet Vol. 4 / USEnet 4.02 < prev    next >
Encoding:
Text File  |  1988-04-08  |  25.6 KB  |  638 lines  |  [TEXT/ttxt]

  1. 10-Jan-88 09:00:32-PST,26772;000000000000
  2. Return-Path: <usenet-mac-request@RELAY.CS.NET>
  3. Received: from RELAY.CS.NET by SUMEX-AIM.Stanford.EDU with TCP; Sun, 10 Jan 88 09:00:07 PST
  4. Received: from relay2.cs.net by RELAY.CS.NET id aa02922; 10 Jan 88 11:41 EST
  5. Received: from relay.cs.net by RELAY.CS.NET id aa16629; 10 Jan 88 11:34 EST
  6. Received: from sdr.slb.com by RELAY.CS.NET id aa16616; 10 Jan 88 11:30 EST
  7. Date: Sun, 10 Jan 88 10:50 EDT
  8. From: Jeffrey Shulman <SHULMAN%sdr.slb.com@RELAY.CS.NET>
  9. Subject: Usenet Mac Digest V4 #2
  10. To: usenet-mac@RELAY.CS.NET, PIERCE%HDS%sdr.slb.com@RELAY.CS.NET
  11. X-VMS-To: in%"usenet-mac@relay.cs.net",in%"PIERCE%HDS@SDR.SLB.COM"
  12.  
  13. Date: Sun 10 Jan 88 10:49:57-GMT
  14. From: Jeff Shulman <SHULMAN@SDR>
  15. Subject: Usenet Mac Digest V4 #2
  16. To: Usenet-List: ;
  17. Message-ID: <568810197.0.SHULMAN@SDR>
  18. Mail-System-Version: <VAX-MM(218)+TOPSLIB(129)@SDR>
  19.  
  20. Usenet Mac Digest     Sunday, January 10, 1988        Volume 4 : Issue 2 
  21.  
  22. Today's Topics:
  23.      Re: Multifinder woes. DA's
  24.      Red Ryder 10.3 Download Quirks
  25.      Making the Mac send all screen graphics to an offscreen bitmap (HOW?)
  26.      Status of Allegro Common Lisp? (2 messages)
  27.      fuzzy fonts, anyone ?
  28.      Re: Power Users (long)
  29.      Mac questions
  30.      smart fan
  31.      Re: Chooser Strangeness (really printing options ugliness)
  32.      Re: International Macs + new user interface = ?
  33.      Indian Languages: any fonts?
  34.      Re: Status of Allegro Common Lisp?
  35.      Re: Multifinder woes. DA's
  36.      Re: Red Ryder 10.3 Download Quirks
  37.      Re: Power Users (long)
  38.      Re: Red Ryder 10.3 Download Quirks
  39.      Simple example of Color Quickdraw wanted.
  40.  
  41. ---------------------------------------------------------------------- 
  42.  
  43. From: goldman@apple.UUCP (Phil Goldman)
  44. Subject: Re: Multifinder woes. DA's
  45. Date: 3 Jan 88 08:57:36 GMT
  46. Organization: Apple Computer Inc., Cupertino, USA
  47.  
  48. In article <411@ut-emx.UUCP> bill@emx.UUCP (William H. Jefferys) writes:
  49. >In article <7965@j.ms.uky.edu> steve@ms.uky.edu (Steve Ferry) writes:
  50. >~
  51. >~   I just bought a copy of Multifinder from my local dealer 
  52. >~and I'm upset by the way it handles DA's. I use a Datadesk 
  53. >~...
  54. >
  55. >More importantly, this behavior seems to me to be a failure of
  56. >systems design on the part of Apple. In general, MF ought to
  57. >behave in ways that are parallel to the way things work under the
  58. >old finder.
  59. >...
  60. This is definitely true, when the parallels are clear and the benefits
  61. outweigh the problems.  In this case neither is so.  The only benefit to
  62. having the default be to open in the layer is to allow for easier use of
  63. parasite DAs.  It seems as though the number of non-parasitic DAs is far
  64. greater than the parasitic ones.  In addition many of the parasitic ones
  65. are used with only one or a few applications (i.e. Spell Checkers for
  66. word processors, Click Art Effects for MacPaint, etc.).  Therefore, the
  67. logical choice seemed to be what currently exists:  normal open creates
  68. another layer, Font/DA moving a parasitic DA into an application's
  69. resource file is the easiest for the app- specific parasitic DAs.
  70.  
  71. This leaves the category of DAs that are parasitic but not app-specific.
  72. Really, these should not be DAs at all, they should probably be INITs. 
  73. If they need an interface then this should be a DA (which will have no
  74. problem at all existing in its own layer) or better yet an application. 
  75. For a good example of this, take a look at the Intermail elctronic mail
  76. system, which combines an INIT and a DA.  The INIT allows for
  77. notification in any layer, but the DA interface stays in the DA Handler
  78. layer.
  79.  
  80. The primary reason for keeping the DAs in a separate layer is that many
  81. applications simply cannot handle having a DA in its memory partition. 
  82. This is a very difficult (read impossible) job for developers who wish
  83. to do comprehensive memory management.  There is simple no way to handle
  84. a DA since it has arbitrary memory requirements at arbitrary times.  The
  85. only real possibility is to increase the SIZE of every single
  86. application, since any application might be subject to the memory
  87. requirements of the DA. This would be a huge waste of memory, which is
  88. already a scarce resource. Therefore, the only real solution is to
  89. separate the DA from the app.
  90.  
  91. There are also obvious benefits to separating the DAs.  For example a DA
  92. such as the alarm clock will stay open even if the app that it was
  93. originally opened from is quit.  Also, it is a great deal easier to keep
  94. track of a DA window since it is grouped with all other DAs, rather than
  95. spliced into app's window list.
  96.  
  97. Hopefully the developers that have created these DAs will soon have a
  98. chance to switch to INITs.  Also, we hope to add support for
  99. inter-process communication, so that these products could be written
  100. simply as apps.  This supports the desired ultimate end, because the
  101. application model is clean and easy to support (from the point of view
  102. of the developer and of Apple) while the DA model is not.
  103.  
  104. Of course, if the need is great enough there are ways for us to better
  105. support the non-app-specific parasitic DAs in the short run.  Why don't
  106. all of you out there in net-land let us know how often you use such DAs?
  107.  The current belief here is that they are not used that often.
  108.  
  109. >
  110. >Apple, are you listening?
  111. >
  112. >Bill Jefferys
  113.  
  114. Yes, we're always listening.  Always.  Merry Christmas.
  115. -- 
  116. -Phil Goldman
  117. Apple Computer
  118.  
  119.  
  120. ------------------------------
  121.  
  122. From: clubmac@runx.ips.oz (Macintosh Users Group)
  123. Subject: Red Ryder 10.3 Download Quirks
  124. Date: 31 Dec 87 03:34:58 GMT
  125. Organization: RUNX Un*x Timeshare.  Sydney, Australia.
  126.  
  127.  
  128. Has anyone noticed that RR 10.3 downloads FASTER in the background than
  129. in the foreground, under MultiFinder?
  130.  
  131. Jason Haines
  132. -- 
  133. Club Mac Macintosh Users Group, Sydney, Australia
  134. Phone Home: +61-2-73-4444
  135. Snail:      Box 213, Holme Building, Sydney University, NSW, 2006, Australia
  136. ACSnet:     clubmac@runx.ips.oz       ARPA:   clubmac%runx.ips.oz@uunet.css.gov
  137. UUCP:{enea,hplabs,mcvax,prlb2,uunet,ubc-vision,ukc}!munnari!runx.ips.oz!clubmac
  138.  
  139.  
  140. ------------------------------
  141.  
  142. From: milo@ndmath.UUCP (Greg Corson)
  143. Subject: Making the Mac send all screen graphics to an offscreen bitmap (HOW?)
  144. Date: 3 Jan 88 21:38:06 GMT
  145. Organization: Math. Dept., Univ. of Notre Dame
  146.  
  147. I have an experiment I'm working on that requires me to "fool" the Mac
  148. into redirecting all of it's graphics into an off-screen bitmap.  By all
  149. graphics, I mean everything, Menu bar, all windows, mouse pointer...etc.
  150.  Since this is just an experiment the method doesn't have to be able to
  151. work for everything,  as long as I can run some word processing and
  152. drawing programs with it  turned on.
  153.  
  154. I should mention that I need a method that works with color quickdraw on
  155. a Mac II.
  156.  
  157. I would be particularly interested in a method that would allow the
  158. offscreen bitmap to be bigger than the standard Mac screen.  Also, if
  159. there was a way to trick the Mac into scaling up the fonts and menubars
  160. so they came out bigger on the bigger screen it would be helpful.  (ie:
  161. if the offscreen bitmap was twice the size of a normal Mac screen it
  162. would cause 24 point fonts to be used instead of 12 point ones and the
  163. menu bar would be twice as tall.)
  164.  
  165. The application is some visual preception experiments, the offscreen
  166. bitmap will be processed slightly and copied back to the "real" screen
  167. at regular intervals as fast as possible.
  168. -- 
  169. Greg Corson
  170. 19141 Summers Drive
  171. South Bend, IN 46637
  172. (219) 277-5306 (weekdays till 6 PM eastern)
  173. {pur-ee,rutgers,uunet}!iuvax!ndmath!milo
  174.  
  175.  
  176.  
  177. ------------------------------
  178.  
  179. From: evans@mhuxt.UUCP (Sukie Crandall)
  180. Subject: Status of Allegro Common Lisp?
  181. Date: 3 Jan 88 22:23:51 GMT
  182. Organization: AT&T Bell Laboratories, Murray Hill, NJ
  183.  
  184.  
  185. Has anyone used Allegro Common Lisp (from Coral Software)? The review in
  186. Byte (current issue) made it look promising. Specifically is there a
  187. release > 1.0 and what are its features? What is the status of CLOS for
  188. Allegro CL? What kind of upgrade policy do they have (eg. should I buy
  189. now and trust them for inexpensive upgrades or should I wait for
  190. something a little more finished)?
  191. -- 
  192. thanks for any info!
  193. Steve Crandall
  194. ihnp4!mhuxt!evans
  195.  
  196.  
  197. ------------------------------
  198.  
  199. From: bc@mit-amt.MEDIA.MIT.EDU (bill coderre)
  200. Subject: Re: Status of Allegro Common Lisp?
  201. Date: 4 Jan 88 06:12:25 GMT
  202. Organization: MIT Media Lab, Cambridge MA
  203.  
  204.  
  205. The current version is 1.1, and was free to registered 1.0 owners.
  206.  
  207. ACL runs IN THE BACKGROUND UNDER MULTIFINDER. (As if you had that many
  208. spare cycles! Still, an incredibly useful thing. I now have Lisp and
  209. Telnet both running on my Prodigy. The Mac that's almost a workstation.)
  210.  
  211. There is a dialog designer tool, which generates good lisp code for all
  212. sorts of dialogs. You use it sort of like the Resource Editor dialog
  213. designer section. It's still a proto, but pretty darn useful.
  214.  
  215. Although CLOS is not supported by Coral yet, I believe one could hack
  216. the portable CLOS to run with little or no trouble. This means I think I
  217. saw it done, but I didn't do it. Coral has mumbled that they intend to
  218. support whatever is finally decided upon as the "official" common object
  219. system.
  220.  
  221. I heard noise that Flavors was being supported, but I'm not sure if it
  222. is in this release or next.
  223.  
  224. Many bugs were fixed, and a slight reorganization of functions (traps
  225. are now a separate load file, stuff like that, no big deal).
  226.  
  227. You can always call Coral and ask questions.........................bc
  228.  
  229.  
  230. ------------------------------
  231.  
  232. From: hmm@laura.UUCP (Hans-Martin Mosner)
  233. Subject: fuzzy fonts, anyone ?
  234. Date: 2 Jan 88 13:51:14 GMT
  235. Organization: University of Dortmund, W-Germany
  236.  
  237. Has anybody out there seen a fuzzy font for the mac II ? Fuzzy fonts are
  238. fonts which use grayscale pixels to give the illusion of higher detail
  239. and less jaggies at the edges. The mac II should be able to do that, but
  240. I don't know whether the font manager supports it.  So please stand up
  241. if you know sucha font (and send it to me, please !)
  242.  
  243.     Hans-Martin
  244. -- 
  245. Hans-Martin Mosner        | Don't tell Borland about Smalltalk - |
  246. hmm@unido.{uucp,bitnet}        | they might invent Turbo Smalltalk !  |
  247. ------------------------------------------------------------------------
  248. Disclaimer: Turbo Smalltalk may already be a trademark of Borland...
  249.  
  250.  
  251. ------------------------------
  252.  
  253. From: smethers@psu-cs.UUCP (Paul Smethers)
  254. Subject: Re: Power Users (long)
  255. Date: 4 Jan 88 10:42:19 GMT
  256. Organization: Dept. of Computer Science, Portland State University; Portland OR
  257.  
  258. I think the number one discipline anyone should take when building an
  259. application for power users is to adhere to Apple's Standard Human
  260. Interface Guidelines.  To adjust these for power users, I recommend that
  261. you read Scott Knaster's new book "Macintosh Programming Secrets", which
  262. has a very good introduction on guidelines for programming the Macintosh
  263. (and I, for one, consider him to be a power user).
  264.  
  265. Secondly, you have my vote for as many key commands as possible.  Please
  266. never "replace" mouse commands for key commands, but have as many key
  267. command substitutes as possible.  These are my feelings, as I learned
  268. computers from the keyboard (not a mouse) originally, and still feel
  269. much more productive issuing rapid key commands as opposed to reaching
  270. for the mouse every other second (and yes, I have memorized and use
  271. "every" Microsoft Word key command). In the past, however, I have come
  272. to feel that my insistance on adding key commands to products is
  273. unusual, as few people on the net seem to support my requests.
  274.  
  275. Finally, I hope that you don't make your application "cluttered".  I
  276. hate long menus and would rather have more fuctional menus that lead to
  277. simple dialog boxes (or hierarchical menus) for help.  Popup menus are
  278. good for eliminating clutter also.  I am a big-screen user myself, so
  279. I'm not asking for reduced clutter for screen reasons, but aesthetic
  280. reasons.
  281.  
  282. By the way, what is this great product for power users?  Is it another
  283. word processor?, or something to do with programming?  This may change
  284. my viewpoint as I think that you can get away with less user
  285. friendliness for power (to a minor degree) if you know that your
  286. audience is technical.  Therefore, it would help if we knew if "power
  287. user" can be applied to the guy who writes books and therefore uses
  288. every command in his word processor (but is not technical), or if "power
  289. user" applies only to those who have also programmed the Macintosh, and
  290. are looking for great productivity tools but don't need the simple
  291. user-interface frills of a program for novices.
  292. -- 
  293. Paul Smethers
  294. SmethersBarnes
  295.  
  296.  
  297. ------------------------------
  298.  
  299. From: rcb@rti.UUCP (Randy Buckland)
  300. Subject: Mac questions
  301. Date: 4 Jan 88 15:50:22 GMT
  302. Organization: Research Triangle Institute, RTP, NC
  303.  
  304. I have questions about the PMMu for the MAC II.
  305.  
  306.     1. Where is the socket for it on the motherboard?
  307.     2. I understand that it does not come on a standard MAC II. Is there
  308.         something that occupies the slot it should be in?
  309.     3. I have a MAC II with no empty sockets and a strange history. Is
  310.         there a way I can tell if I have it installed? What does
  311.         it look like? What are the numbers on it?
  312.  
  313. An unrelated question.
  314.  
  315.     Anybody have any idea when LightSpeed Pascal will work under
  316.     multifinder?
  317.  
  318. -- 
  319.                     Randy Buckland (919)-541-7103
  320.                     Research Triangle Institute
  321.                     rcb@rti.rti.org [128.109.139.2]
  322.                     {decvax,ihnp4}!mcnc!rti!rcb
  323.  
  324.  
  325. ------------------------------
  326.  
  327. From: phil@amdcad.AMD.COM (Phil Ngai)
  328. Subject: smart fan
  329. Date: 5 Jan 88 00:40:52 GMT
  330. Organization: Advanced Micro Devices, Inc., Sunnyvale, Ca.
  331.  
  332.  
  333. I see that Rotron now has a great idea in fans. It's a DC operated fan
  334. with an extra two wires. The resistance you provide between the wires
  335. determines the speed of the fan, with the intention being that you use a
  336. thermistor to regulate the amount of air moved based on the temperature.
  337. The power supply voltage is not a factor (within limits of course). This
  338. is all done with PWM type stuff so that efficiency is very high. 
  339.  
  340. I hope Apple takes note of this!
  341.  
  342. -- 
  343. "how long will the machine be down?"
  344. "as long as you stand there and bother me"
  345.  
  346. Phil Ngai, {ucbvax,decwrl,allegra}!amdcad!phil or amdcad!phil@decwrl.dec.com
  347.  
  348.  
  349. ------------------------------
  350.  
  351. From: planting@colby.WISC.EDU ( W. Harry Plantinga)
  352. Subject: Re: Chooser Strangeness (really printing options ugliness)
  353. Date: 5 Jan 88 02:05:56 GMT
  354. Organization: U of Wisconsin CS Dept
  355.  
  356. >> Chooser does not re-initialize the serial port;
  357. >> that's only done at reboot or startup time.... Apple
  358. >> intended for you to use only one kind of device on the serial
  359. >> port in between reboots.
  360. >> 
  361. >> Hey, Apple, this is a bug!  I have a modem on the modem port,
  362. >> an IW on the printer port, and I like to be able to hop into
  363. >> LW to create PostScript files for uploading.  Any chance of a fix?
  364.  
  365. >Why not have a "printer driver" accessible from the Chooser (like the
  366. >Glue software) that if chosen would save a Postscript file instead of
  367. >really printing.  
  368.  
  369. There's another thing about printing that really annoys me.  There are
  370. options that can be chosen in the print dialog that affect the way the
  371. page looks.  For example, in Word, selecting "fractional widths" makes
  372. more text fit on each line.  However, having fractional widths selected
  373. also makes the program run many times slower.  So what do I have to do
  374. to preview a paper that is to be printed with fractional widths?  Select
  375. print, select fractional widths, and hit "ok."  Then try to cancel the
  376. printing before anything gets printed.
  377.  
  378. This is ridiculous.  I have to start a printing and abort it just to see
  379. how the paper will look printed out?
  380.  
  381.  
  382. ------------------------------
  383.  
  384. From: tecot@apple.UUCP (Ed Tecot)
  385. Subject: Re: International Macs + new user interface = ?
  386. Date: 5 Jan 88 02:44:08 GMT
  387. Organization: Apple Computer Inc., Cupertino, USA
  388.  
  389. In article <22366@ucbvax.BERKELEY.EDU> oster@dewey.soe.berkeley.edu.UUCP
  390. (David Phillip Oster) writes:
  391. >Two questions about writing compatible macintosh software:
  392. >
  393. >How do international issues effect <Cmd>-?
  394. >How do international issues effect the function keys on the large 
  395. >    keyboard?
  396. >
  397. >1.) How do international issues effect <Cmd>-?.
  398. ><Cmd>-? is an evolving standard for help in the Macintosh environment,
  399. >yet, if the user actually holds down the <Cmd> key and hits the question
  400. >mark key, the system software shows my application a <Cmd>-/ keyDown
  401. >event.  I am capable of writing <Cmd>-/ as a synonym for <Cmd>-?, but 
  402. >what about non-American keyboards? Surely the '?' is not above the '/'
  403. >on every keyboard Apple will ever sell, anywhere in the world?
  404. >How do I do the right thing for all the foreign language keyboards that
  405. >Apple might introduce. (I want my software to work, well into the future.)
  406.  
  407. You are correct in stating that the '?' is not above the '/' in every
  408. keyboard that Apple might sell, especially when Europe is considered. 
  409. This is a significant problem, and you might argue that command-? should
  410. always return command-?, even when the keys are shifted.  I did. 
  411. However, several applications (e.g. FullPaint) expect to get
  412. command-shift-/ and broke when they were given command-? instead.  So...
  413. the correct solution is to accept BOTH command-? and command-shift-/ to
  414. operate any command-? feature.
  415.  
  416. >2.) How do international issues effect the function keys on the large 
  417. >    Apple Desktop Bus keyboard?
  418. >...
  419.  
  420. Whenever decoding a keystroke on the Macintosh, always use the character
  421. code first, and only if you need more information, go to the key code.
  422. So, if you see a character code of $1B, and you need to know if it is
  423. clear or escape, then and only then should you examine the key code. 
  424. The same goes for the function keys.  Under no circumstances should you
  425. ever modify the KMAP, as this is intended for the use of the keyboard
  426. manufacturer only.
  427.  
  428.                         _emt
  429.  
  430.  
  431. ------------------------------
  432.  
  433. From: simon@alberta.UUCP (Simon Tortike)
  434. Subject: Indian Languages: any fonts?
  435. Date: 5 Jan 88 02:40:08 GMT
  436. Organization: U. of Alberta, Edmonton, AB
  437.  
  438.  
  439. My supervisor would like to obtain fonts for any of the languages from
  440. the Indian subcontinent.  Would anyone who is able to give us some
  441. information please send a note to the Bitnet address below. PostScript
  442. and bitmapped fonts are both of interest. Many thanks.
  443. -- 
  444. W. Simon Tortike
  445. Dept Min, Met &    UUCP:   {ubc-vision,ihnp4,mnetor}!alberta!simon
  446.   Petroleum Engg   BITNET: stortike@ualtavm
  447. Univ. of Alberta   AGT:    (403) 432-3338
  448. Edmonton, AB
  449. Canada T6G 2G6
  450.  
  451.  
  452. ------------------------------
  453.  
  454. From: hemphill@dalcs.UUCP (Gavin Hemphill)
  455. Subject: Re: Status of Allegro Common Lisp?
  456. Date: 5 Jan 88 00:21:01 GMT
  457. Organization: Math, Stats & CS, Dalhousie University, Halifax, NS, Canada
  458.  
  459.     I've been using the Allegro Common Lisp since it first came out, and
  460. the simplest answer is that it is a FULL Common Lisp which works very
  461. well on the Mac (I'd recommend at least 2.5 Mbytes of RAM though).  I'm
  462. currently running CLOS (The Dec 8th version from the coral directory at
  463. parcvax) and have had no problems to speak of.  The current version is
  464. 1.1, which provided a few minor bug fixes and Multifinder awareness. 
  465. Its great being able to do software development at home, then simply
  466. transfer the code to the Symbolics at work and have it run, the only
  467. difference being speed.
  468.     As for specific features, I particularly like the logical pathname
  469. scheme and the ease of access to the toolbox routines -- now if we only
  470. had the stand alone compiler available (which is supposed to happen
  471. sometime this year) I'd be really happy.
  472.  
  473.  
  474. ------------------------------
  475.  
  476. From: pollock@usfvax2.UUCP (Wayne Pollock)
  477. Subject: Re: Multifinder woes. DA's
  478. Date: 5 Jan 88 07:35:29 GMT
  479. Organization: University of South Florida at Tampa
  480.  
  481. First of all, thanks, Phil, for the detailed response; its always nice
  482. to know that people at Apple really listen!
  483.  
  484. As to you query about "parasitic" DAs, I believe they are more common
  485. than you think;  I often use my spelling checker in conjuction with my
  486. terminal emulator, and even with my text editor.  So installing it in my
  487. word processor wouldn't work.  In addition to spelling checkers, there
  488. are other word related tools, art grabbers, journal makers, work
  489. loggers, and some useful but older DAs which won't work unless opened in
  490. the application's memory space.
  491.  
  492. As you suggested, future evolution of the mac should make this a
  493. non-issue; most of the problematic DAs will be rewritten as Inits or
  494. CDEVs or simply as applications.  In the meantime, judging by the
  495. discussion here, this is a problem for many users; a better answer than
  496. the option key trick is needed.
  497.  
  498. It seems to me the whole issue can be simply resolved.  Macintosh
  499. designer's had the tremendous foresight to structure files into seperate
  500. pieces.  They knew that there would be additions/changes and they
  501. provided a nice mechanism to allow for them.
  502.  
  503. Why not add a resource type, recognized by the system software, that
  504. would tell the system where to install a DA?  A few lines of code in the
  505. DA opening sequence, a technote telling people what resource to add to
  506. DAs to modify the behavior, and viola! the problem is gone.
  507.  
  508. For example, the presence of an owned resouce 'DAH ' in a DA could cause
  509. the DA to be opened by the DA handler; otherwise use the default
  510. (application memory space).  If you prefer, use 'DAAP' to instruct the
  511. system to put the DA in the application's space have use the DA handler
  512. by default.  And of course the option key trick would still be available
  513. as an overide.)
  514.  
  515. I have this same suggestion for 'SIZE' resources; it should be possible
  516. to put a SIZE resource in a document, which would override the SIZE in
  517. the application (which would be used as a default).  As you pointed out,
  518. memory is a scarce resource it it is a shame to waste it by having a
  519. spreadsheet program request enought memory for a large spreadsheet when
  520. all I'm using is an itty-bitty one.
  521.  
  522. A smart application could put the SIZE resource in each document it
  523. creates, and adjust it as the document grows and/or shrinks.  This ought
  524. to work whenever the application is started by double-clicking one of
  525. its documents; naturally the default SIZE would be used if the
  526. application were launched directly.
  527.  
  528. -- 
  529. Wayne Pollock (The MAD Scientist)    pollock@usfvax2.usf.edu.UUCP
  530. Usenet:        ...!{ihnp4, cbatt}!codas!usfvax2!pollock
  531. GEnie:        W.POLLOCK
  532.  
  533.  
  534. ------------------------------
  535.  
  536. From: pollock@usfvax2.UUCP (Wayne Pollock)
  537. Subject: Re: Red Ryder 10.3 Download Quirks
  538. Date: 5 Jan 88 07:45:24 GMT
  539. Organization: University of South Florida at Tampa
  540.  
  541. This has been discussed a great deal lately on GEnie.  The reason
  542. apparently is that in the foreground, RR spends a great deal of time
  543. checking for events (like DA activation) and even more time in quickdraw
  544. for the fancy indicator.  I'm certain that there will be an option in
  545. the next version of RR for a very fast, no frills type download.  In the
  546. meantime, for large downloads, you can put RR in the background if you
  547. have multifinder, or use RR with something like the BackDown DA if you
  548. don't.
  549. -- 
  550. Wayne Pollock (The MAD Scientist)    pollock@usfvax2.usf.edu.UUCP
  551. Usenet:        ...!{ihnp4, cbatt}!codas!usfvax2!pollock
  552. GEnie:        W.POLLOCK
  553.  
  554.  
  555. ------------------------------
  556.  
  557. From: kaplan@uiucdcsb.cs.uiuc.edu
  558. Subject: Re: Power Users (long)
  559. Date: 5 Jan 88 05:39:00 GMT
  560.  
  561.  
  562. Just one small point:
  563.  
  564. I would like to have a fair degree of control over my interface to any
  565. tool;  specifically I would like to be able to set/change my own
  566. keymaps.  Emacs is of course the best example of this, but so is X
  567. windows. Given just about any Mac product I have used (MacWrite,
  568. MacDraw, MacScheme, Word) extensively, it is very irritating that I
  569. cannot rearrange the order in which things appear on menus, bind
  570. frequently used commands to simple key sequences, etc.  None of the
  571. systems (even word) I have used on the Mac give any support for this. 
  572. It means that my use of the system cannot "grow" as I become more mature
  573. on it.
  574.  
  575. An example:  In word I would like one command-key combination to get my
  576. font changed to courier (because I write a lot of program + text type
  577. stuff).  This isnt something that I expect Word to provide as standard
  578. (command-shift-e fontname return) does not hack it -- too much typing,
  579. and a similar 1-keystroke command to get things changed back.  I should
  580. be able to add this feature to word.
  581.  
  582. That's why I use Emacs and X under Unix;  because I have that
  583. customizability power.  No Mac application I have ever seen allows me to
  584. do this.  (And no I dont think that editing resource forks should be
  585. necessary to tailor my applications, given the level at which that
  586. editing must be done).
  587. -- 
  588. Simon Kaplan
  589. (kaplan@a.cs.uiuc.edu)
  590. (any major node)!{seismo, ihnp4}!uiucdcs!kaplan
  591.  
  592.  
  593. ------------------------------
  594.  
  595. From: kraut@ut-emx.UUCP (Werner Uhrig)
  596. Subject: Re: Red Ryder 10.3 Download Quirks
  597. Date: 5 Jan 88 19:13:07 GMT
  598. Organization: The University of Texas at Austin, Austin, Texas
  599.  
  600.     ...and that VersaTerm downloads (nearly) twice as fast ??!!
  601.     at least that is my experience when accessing local BBSes running
  602.     RRhost ... I use the RR-script to get on, start the download with
  603.     type 2 (other), then switch to VersaTerm and receive in MacBinary ...
  604. -- 
  605. werner@rascal.ics.utexas.edu        (prefered address)
  606. kraut@emx.cc.utexas.edu
  607. kraut@ut-emx.UUCP  (or  ...!ut-sally!ut-emx!kraut)
  608.  
  609.  
  610. ------------------------------
  611.  
  612. From: milo@ndmath.UUCP (Greg Corson)
  613. Subject: Simple example of Color Quickdraw wanted.
  614. Date: 5 Jan 88 18:29:07 GMT
  615. Organization: Math. Dept., Univ. of Notre Dame
  616.  
  617. Does anyone have some simple source code examples of using Color
  618. Quickdraw on a Mac II?  I am going to do a few test programs soon and
  619. some examples of manipulating the color pallette would be very helpful. 
  620. I need to be able to set the actual values in the pallette to specific
  621. real values for displaying pictures and then be able to restore the
  622. default palette when I leave.
  623.  
  624. Any examples would be appreciated, preferably in MPW C but I'l take
  625. whatever I can get.
  626. -- 
  627. Greg Corson
  628. 19141 Summers Drive
  629. South Bend, IN 46637
  630. (219) 277-5306 (weekdays till 6 PM eastern)
  631. {pur-ee,rutgers,uunet}!iuvax!ndmath!milo
  632.  
  633. ------------------------------
  634.  
  635. End of Usenet Mac Digest
  636. ************************
  637. -------
  638.